web3.js web3.utils.padLeft
web3.utils.padLeft(string, characterAmount [, sign])
web3.utils.leftPad(string, characterAmount [, sign]) // ALIAS
文字列の左側にパディングを追加します。
パラメータ
1. string - String: The string to add padding on the left.
2. characterAmount - Number: The number of characters the total string should have.
3. sign - String
オプショナル
埋める文字
デフォルトは 0
サンプル
code:ex.js
web3.utils.padLeft('0x3456ff', 20);
"0x000000000000003456ff"
web3.utils.padLeft(0x3456ff, 20);
"0x000000000000003456ff"
web3.utils.padLeft('Hello', 20, 'x');
"xxxxxxxxxxxxxxxHello"
参考